home *** CD-ROM | disk | FTP | other *** search
/ Giga Games 1 / Giga Games.iso / net / go / prog / sgf2mi13.taz / sgf2mi13 / sgfread.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-27  |  1.3 KB  |  50 lines

  1. /* #[info:            */
  2. /************************************************************************
  3.  *                                    *
  4.  *           ####  ####  ##### #####  #####    #    ####          *
  5.  *          #     #      #     #    # #       # #   #   #         *
  6.  *          #     #      #     #    # #      #   #  #    #        *
  7.  *           ###  #  ##  ###   #####  ###   ####### #    #        *
  8.  *              # #    # #     #  #   #     #     # #    #        *
  9.  *              # #    # #     #   #  #     #     # #   #         *
  10.  *          ####   ####  #     #    # ##### #     # ####          *
  11.  *                                    *
  12.  *                Jan van der Steen                *
  13.  *                                    *
  14.  *          Centre for Mathematics and Computer Science        *
  15.  *              Amsterdam, the Netherlands            *
  16.  *                                    *
  17.  *----------------------------------------------------------------------*
  18.  * File    : sgfread.h                         *
  19.  * Purpose : Read and store a Smart Go Format file            *
  20.  * Version : 1.1                         *
  21.  * Modified: 11/8/92 17:00:54                        *
  22.  * Author  : Jan van der Steen (jansteen@cwi.nl)             *
  23.  ************************************************************************/
  24. /* #]info:            */ 
  25.  
  26. #ifndef __SGFREADH
  27. #define __SGFREADH
  28.  
  29. /* #[include:        */
  30.  
  31. #include <stdio.h>
  32. #include "gogame.h"
  33.  
  34. /* #]include:        */ 
  35. /* #[prototype:        */
  36.  
  37. #ifdef __STDC__
  38. #    define    PROTO(s) s
  39. #else
  40. #    define    PROTO(s) ()
  41. #endif
  42.  
  43. GOGAME *    sgf_read    PROTO((FILE *fp));
  44.  
  45. #undef PROTO
  46.  
  47. /* #]prototype:        */ 
  48.  
  49. #endif
  50.